/* =========================================
   Cart Layout
========================================= */

.cart-page{

    max-width:1400px;

    margin:70px auto;

    padding:20px;

    display:grid;

    grid-template-columns:2fr 420px;

    gap:40px;

    align-items:start;

}

.cart-page h1{

    grid-column:1/-1;

}

.cart-page h1{

    font-size:48px;
    margin-bottom:40px;

}

#cart-items{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.cart-item{

    display:flex;
    align-items:center;
    gap:30px;

    background:#ffffff;

    border:1px solid #e8e8e8;

    border-radius:16px;

    padding:25px;

}


.cart-item img{

    width:140px;
    height:140px;

    object-fit:cover;

    border-radius:12px;

    border:1px solid #e5e5e5;

    flex-shrink:0;

}

.cart-summary{

    position:sticky;

    top:30px;

    background:#ffffff;

    border:1px solid #e6e6e6;

    border-radius:18px;

    padding:30px;

}


.cart-summary .solid-button{

    width:100%;

    justify-content:center;

    background:#20211d;

    color:#ffffff;

    border:1px solid #20211d;

    border-radius:10px;

    margin-top:25px;

    transition:0.3s;

}

.cart-summary .solid-button:hover{

    background:#9b5c3d;

    border-color:#9b5c3d;

    color:#ffffff;

}